<!DESCRIPTION>Changes the caption of the form's submit button while the form is being submitted. This helps eliminate the confusion that can sometimes occur when a form takes quite a while to be processed by the server. <!/DESCRIPTION>
<!CATEGORY>Forms<!/CATEGORY>
<!SCRIPT>
<!-- START OF SCRIPT -->
<!-- HOW TO INSTALL SUBMIT CHANGER:
1. Copy code into the HEAD section of document
2. Put last coding into the BODY section of document -->
<!-- STEP ONE: Add code into HEAD section of document -->
<HEAD>
<SCRIPT LANGUAGE="JavaScript">
<!-- Original: Mike Fernandez -->
<!-- Begin
function submitForm(s) {
s.value = " Sending... ";
return true;
}
// End -->
</script>
</HEAD>
<!-- STEP TWO: Add code into BODY section of document -->